home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
djgpp
/
go32
/
fs
/
serial.h
< prev
next >
Wrap
C/C++ Source or Header
|
1995-03-21
|
569b
|
22 lines
#ifndef SERIAL_H
#define SERIAL_H 1
extern void com_flush_rx(void);
extern void com_flush_tx(void);
extern int com_carrier(void);
extern int com_tx_ready(void);
extern int com_tx_empty(void);
extern int com_rx_empty(void);
extern void com_lower_dtr(void);
extern void com_raise_dtr(void);
extern void com_set_speed(unsigned int Speed);
extern void com_set_parity(void);
extern int com_install(int PortNum);
extern int com_init(int port_num);
extern void com_done(void);
extern int com_rx(void);
extern void com_tx(int ch);
extern void com_txs(char *s);
#endif